home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 09-24.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  374b  |  25 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. NewMode = FGbestmode(320,200,1)
  6. IF NewMode < 0 OR NewMode = 12 THEN
  7.    PRINT "This program requires a 320 x 200 color graphics mode."
  8.    STOP
  9. END IF
  10.  
  11. OldMode = FGgetmode
  12. FGsetmode NewMode
  13.  
  14. FGsetcolor 9
  15. FGtext "text", 4
  16. FGwaitkey
  17.  
  18. FGtransfer 0, 31, 0, 7, 4, 15, 0, 0
  19. FGwaitkey
  20.  
  21. FGsetmode OldMode
  22. FGreset
  23.  
  24. END
  25.